/* General Styles */
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f0f8ff;
    margin: 0;
    padding: 0;
  }
  
  /* Navbar Styling */
  .navbar {
    display: flex;
    align-items: center;
    background-color: #333;
    padding: 10px 20px;
  }
  
  .navbar a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 16px;
  }
  
  .navbar a:hover {
    background-color: #575757;
    color: #00bcd4;
  }
  
  .dropdown {
    position: relative;
  }
  
  .dropdown .dropbtn {
    background-color: #333;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
    padding: 10px 20px;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #444;
    min-width: 160px;
    z-index: 1;
  }
  
  .dropdown-content a {
    color: white;
    padding: 10px;
    text-decoration: none;
    display: block;
  }
  
  .dropdown-content a:hover {
    background-color: #575757;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  /* Main Content */
  .main-content {
    padding: 20px;
    text-align: center;
  }
  
  .main-content h1 {
    color: #2e8b57;
  }
  
  .cta {
    margin: 20px 0;
  }
  
  .cta button {
    background-color: #2e8b57;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
  }
  
  .cta button a {
    text-decoration: none;
    color: white;
  }
  
  .featured-builds {
    margin: 40px 0;
  }
  
  .featured-builds h2 {
    color: #2e8b57;
  }
  
  .featured-builds .build-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .featured-builds img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 2px solid #2e8b57;
  }
  
  .community h2 {
    color: #2e8b57;
  }
  
  /* Footer */
  .footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
  }
  
  .footer a {
    color: #00bcd4;
    text-decoration: none;
  }
  
  .footer a:hover {
    text-decoration: underline;
  }
  